home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / unixhead.mak < prev    next >
Text File  |  1996-05-29  |  2KB  |  77 lines

  1. #    Copyright (C) 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Partial makefile common to all Unix configurations.
  16.  
  17. # This part of the makefile gets inserted after the compiler-specific part
  18. # (xxx-head.mak) and before gs.mak and devs.mak.
  19.  
  20. # ----------------------------- Generic stuff ----------------------------- #
  21.  
  22. # Define the platform name.  For a "stock" System V platform,
  23. # use sysv_ instead of unix_.
  24.  
  25. PLATFORM=unix_
  26.  
  27. # Define the syntax for command, object, and executable files.
  28.  
  29. CMD=
  30. O=-o ./
  31. OBJ=o
  32. XE=
  33. XEAUX=
  34.  
  35. # Define the current directory prefix and command invocations.
  36.  
  37. CAT=cat
  38. D=/
  39. EXPP=
  40. EXP=./
  41. SHELL=/bin/sh
  42. SH=$(SHELL)
  43. SHP=$(SH) $(EXP)
  44.  
  45. # Define generic commands.
  46.  
  47. CP_=cp
  48. RM_=rm -f
  49. RMN_=rm -f
  50.  
  51. # Define the arguments for genconf.
  52.  
  53. CONFILES=-p "%s&s&&" -pl "&-l%s&s&&" -pL "&-L%s&s&&" -ol $(ld_tr)
  54.  
  55. # Define the compilation rules and flags.
  56.  
  57. CCFLAGS=$(GENOPT) $(CFLAGS)
  58.  
  59. .c.o: $(AK)
  60.     $(CCC) $*.c
  61.  
  62. CCCF=$(CCC)
  63. CCD=$(CCC)
  64. CCINT=$(CCC)
  65.  
  66. BEGINFILES=
  67. CCBEGIN=$(CCC) *.c
  68.  
  69. # Patch a couple of PC-specific things that aren't relevant to Unix builds,
  70. # but that cause `make' to produce warnings.
  71.  
  72. BGIDIR=***UNUSED***
  73. PCFBASM=
  74.